/* Mission Section Styles */
.mission-section {
    margin: 0 auto;
    max-width: 1200px;
    padding: 4rem 1rem 0 1rem;
    text-align: center;
}
.mission-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ff6a00 30%, #ff3e8e 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
}
.mission-description {
    font-size: 1.4rem;
    color: #495464;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.mission-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.mission-points {
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    align-items: flex-start;
}
.mission-point {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}
.mission-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-top: 2px;
}
.mission-point-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222b3a;
    margin-bottom: 0.2rem;
    text-align: left;
}
.mission-point-desc {
    font-size: 1.05rem;
    color: #495464;
    text-align: left;
}
.mission-quote-box {
    flex: 1 1 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mission-quote {
    background: radial-gradient(circle at 20% 20%, #fff6f6 0%, #ffe9f9 100%);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(255, 62, 142, 0.08);
    padding: 2rem 2.5rem;
    text-align: left;
    max-width: 420px;
    font-size: 1.15rem;
    color: #222b3a;
    margin: 0 auto;
}
.mission-quote em {
    font-size: 1.15rem;
    color: #222b3a;
    display: block;
    margin-bottom: 1.2rem;
}
.mission-quote-author {
    font-size: 1rem;
    color: #495464;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.mission-tax-note {
    margin: 2.5rem auto 0 auto;
    background: linear-gradient(90deg, #ff6a00 0%, #ff3e8e 100%);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 1.2rem 2rem;
    border-radius: 18px;
    max-width: 600px;
    box-shadow: 0 4px 24px rgba(255, 62, 142, 0.08);
}

@media (max-width: 900px) {
    .mission-content {
        flex-direction: column;
        align-items: stretch;
        gap: 2.5rem;
    }
    .mission-quote-box {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .mission-section {
        padding: 2rem 0.5rem 0 0.5rem;
    }
    .mission-title {
        font-size: 2rem;
    }
    .mission-description {
        font-size: 1rem;
    }
    .mission-quote {
        padding: 1.2rem 1rem;
        font-size: 1rem;
    }
    .mission-tax-note {
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }
}

body {
    background: radial-gradient(circle at 20% 20%, #fff6f6 0%, #ffe9f9 100%);
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    background: none;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #ff6a00 30%, #ff3e8e 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-title .highlight {
    color: #ff6a00;
    background: none;
    -webkit-text-fill-color: initial;
}

.hero-subtitle {
    font-size: 3rem;
    font-weight: 700;
    color: #222b3a;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.5rem;
    color: #495464;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.btn-primary {
    background: linear-gradient(90deg, #ff6a00 0%, #ff3e8e 100%);
    color: #fff;
    border: none;
    border-radius: 2.5rem;
    padding: 1rem 2.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(255, 62, 142, 0.08);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    box-shadow: 0 8px 32px rgba(255, 62, 142, 0.16);
    transform: translateY(-2px) scale(1.03);
}

.btn-outline {
    background: transparent;
    color: #ff6a00;
    border: 2px solid #ff6a00;
    border-radius: 2.5rem;
    padding: 1rem 2.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline:hover {
    background: #ff6a00;
    color: #fff;
    box-shadow: 0 8px 32px rgba(255, 106, 0, 0.16);
    transform: translateY(-2px) scale(1.03);
}

.stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6a00;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #495464;
}

@media (max-width: 900px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 2rem;
    }
    .hero-description {
        font-size: 1.1rem;
    }
    .stats {
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .hero-section {
        min-height: 80vh;
        padding: 2rem 1rem;
    }
    .hero-title {
        font-size: 1.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    .stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    .stat-number {
        font-size: 1.5rem;
    }
}

/* Our Programs Section Styles */
.programs-section {
    margin: 60px auto 0 auto;
    max-width: 1200px;
    padding: 0 20px 60px 20px;
}
.programs-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff6a00;
    margin-bottom: 0.5rem;
}
.programs-title span {
    color: #ff3e8e;
}
.programs-description {
    text-align: center;
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 2.5rem;
}
.programs-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.program-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    width: 350px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}
.program-card:hover {
    box-shadow: 0 8px 32px rgba(255,106,0,0.15);
}
.program-card-image {
    position: relative;
    height: 180px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.program-card-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    padding: 18px 20px;
    font-size: 2rem;
    color: #ff6a00;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.program-card-content {
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.program-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #222;
}
.program-card-desc {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.2rem;
}
.program-card-link {
    color: #ff6a00;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 1rem;
}
.program-card-link:hover {
    color: #ff3e8e;
}
.program-card-link-pink {
    color: #ff3e8e;
}
@media (max-width: 900px) {
    .programs-cards {
        flex-direction: column;
        align-items: center;
    }
    .program-card {
        width: 100%;
        max-width: 400px;
    }
}

/* Our Impact Section Styles - Improved for Closer Match */
.impact-section {
    margin: 60px auto 0 auto;
    max-width: 100vw;
    padding: 0 0 60px 0;
    background: linear-gradient(120deg, #ff6a00 0%, #ff3e8e 100%);
    border-radius: 0 0 40px 40px;
    box-shadow: 0 4px 32px rgba(255, 62, 142, 0.10);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.impact-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    margin-top: 0;
    padding-top: 2.5rem;
    letter-spacing: -1px;
}
.impact-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #fff;
    opacity: 0.97;
}
.impact-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.impact-stat-card {
    background: rgba(255,255,255,0.13);
    border-radius: 18px;
    padding: 2.2rem 2.5rem 1.5rem 2.5rem;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 12px rgba(255,255,255,0.08);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    border: none;
}
.impact-stat-card:hover {
    background: rgba(255,255,255,0.18);
    box-shadow: 0 4px 24px rgba(255,255,255,0.13);
    transform: translateY(-4px) scale(1.03);
}
.impact-stat-icon {
    font-size: 2.7rem;
    margin-bottom: 0.7rem;
    color: #fff;
}
.impact-stat-number {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: #fff;
    letter-spacing: 1px;
}
.impact-stat-label {
    font-size: 1.15rem;
    color: #fff;
    opacity: 0.97;
    font-weight: 500;
}
.impact-focus-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}
.impact-focus-card {
    background: rgba(255,255,255,0.13);
    border-radius: 18px;
    padding: 2rem 2.2rem 1.2rem 2.2rem;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 12px rgba(255,255,255,0.08);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    border: none;
}
.impact-focus-card:hover {
    background: rgba(255,255,255,0.18);
    box-shadow: 0 4px 24px rgba(255,255,255,0.13);
    transform: translateY(-4px) scale(1.03);
}
.impact-focus-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}
.impact-focus-desc {
    font-size: 1.08rem;
    color: #fff;
    opacity: 0.97;
    font-weight: 400;
}
@media (max-width: 1100px) {
    .impact-stats-row, .impact-focus-row {
        gap: 1.2rem;
    }
}
@media (max-width: 900px) {
    .impact-stats-row, .impact-focus-row {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }
    .impact-section {
        padding: 0 0 40px 0;
    }
    .impact-title {
        font-size: 2.1rem;
    }
}

/* Stories of Change Section Styles */
.stories-section {
    margin: 70px auto 0 auto;
    max-width: 1200px;
    padding: 0 20px 60px 20px;
    text-align: center;
}
.stories-title {
    font-size: 2.7rem;
    font-weight: bold;
    color: #ff6a00;
    margin-bottom: 0.5rem;
}
.stories-title span {
    color: #ff3e8e;
}
.stories-description {
    font-size: 1.25rem;
    color: #495464;
    margin-bottom: 2.5rem;
}
.stories-cards-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}
.story-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 2.2rem 2.2rem 1.5rem 2.2rem;
    min-width: 320px;
    max-width: 370px;
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.2s, transform 0.2s;
    margin-bottom: 1.5rem;
}
.story-card:hover {
    box-shadow: 0 8px 32px rgba(255,106,0,0.13);
    transform: translateY(-4px) scale(1.03);
}
.story-quote-row {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.7rem;
}
.story-quote-icon {
    color: #ff6a00;
    font-size: 1.5rem;
}
.story-stars {
    color: #ffc107;
    font-size: 1.1rem;
}
.story-quote-text {
    font-size: 1.13rem;
    color: #222b3a;
    margin-bottom: 1.5rem;
    font-style: italic;
    min-height: 80px;
}
.story-person-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}
.story-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff6a00;
}
.story-person-name {
    font-weight: 700;
    color: #222b3a;
    font-size: 1.08rem;
}
.story-person-role {
    color: #495464;
    font-size: 0.98rem;
}
@media (max-width: 1100px) {
    .stories-cards-row {
        gap: 1.2rem;
    }
}
@media (max-width: 900px) {
    .stories-cards-row {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }
    .story-card {
        min-width: 0;
        max-width: 100%;
        width: 100%;
    }
}
            .donation-section {
                display: flex;
                justify-content: center;
                align-items: center;
                padding: 40px 0;
                background: linear-gradient(135deg,#fff6f2 0%,#ffe6f6 100%);
            }
            .donation-form-container {
                background: #fff;
                border-radius: 20px;
                box-shadow: 0 4px 32px rgba(255,110,0,0.08);
                padding: 40px 32px;
                max-width: 480px;
                width: 100%;
            }
            .donation-title {
                text-align: center;
                color: #ff3e8e;
                font-weight: 700;
                margin-bottom: 8px;
            }
            .donation-desc {
                text-align: center;
                color: #444;
                margin-bottom: 24px;
                font-size: 18px;
            }
            .donation-group {
                margin-bottom: 18px;
            }
            .donation-label {
                font-weight: 600;
                margin-bottom: 8px;
                display: block;
            }
            .donation-amount-row {
                display: flex;
                gap: 10px;
                margin-bottom: 10px;
                flex-wrap: wrap;
            }
            .donate-amount-btn {
                flex: 1 1 80px;
                padding: 10px 0;
                border-radius: 8px;
                border: 1.5px solid #ff6a00;
                background: #fff;
                color: #ff6a00;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.2s;
            }
            .donate-amount-btn.active, .donate-amount-btn:focus {
                background: #fff6f2;
                border-color: #ff3e8e;
                color: #ff3e8e;
            }
            .donation-input {
                width: 100%;
                padding: 12px 12px 12px 40px;
                border-radius: 8px;
                border: 1.5px solid #eee;
                margin-bottom: 10px;
                font-size: 16px;
                outline: none;
                background: #fafbfc;
                box-sizing: border-box;
            }
            .donation-type-row {
                display: flex;
                gap: 10px;
            }
            .donate-type-btn {
                flex: 1 1 50%;
                padding: 10px 0;
                border-radius: 8px;
                border: 1.5px solid #eee;
                background: #fff;
                color: #444;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.2s;
            }
            .donate-type-btn.active, .donate-type-btn:focus {
                background: #fff6e6;
                border-color: #ff6a00;
                color: #ff6a00;
            }
            .input-icon-row {
                position: relative;
                margin-bottom: 10px;
            }
            .input-icon {
                position: absolute;
                left: 12px;
                top: 50%;
                transform: translateY(-50%);
                color: #ff6a00;
                font-size: 18px;
                z-index: 2;
            }
            .with-icon {
                padding-left: 40px !important;
            }
            .donation-tax-note {
                background: #ffe6e6;
                padding: 12px 16px;
                border-radius: 10px;
                margin-bottom: 18px;
                font-size: 15px;
                color: #444;
                border: 1px solid #ffd6d6;
            }
            .donate-submit-btn {
                width: 100%;
                padding: 14px 0;
                border: none;
                border-radius: 10px;
                background: linear-gradient(90deg,#ff6a00 0%,#ff3e8e 100%);
                color: #fff;
                font-size: 20px;
                font-weight: 700;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                box-shadow: 0 2px 8px rgba(255,62,142,0.08);
                transition: background 0.2s;
            }
            .donate-submit-btn:hover {
                background: linear-gradient(90deg,#ff3e8e 0%,#ff6a00 100%);
            }
    